home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
jazclib1.arc
/
JZINTDIR.C
< prev
next >
Wrap
Text File
|
1986-07-17
|
721b
|
22 lines
#include <jzdirect.h>
/*
┌────────────────────────────────────────────────────────────────────────────┐
│jzintdir │
│Initialize the directory stack structure before the first call to jzpushdir │
│Synopsis: │
│ jzintdir(&whead); │
│ jzpshdir(&whead); │
│ chdir("\\"); │
│ ... │
│ jzpshdir(&whead); │
│ jzpopdir(&whead); │
└────────────────────────────────────────────────────────────────────────────┘
*/
jzintdir(fhead)
TDIRHEAD *fhead;
{
fhead->numitems = 0; /* init stack to zero items */
fhead->first = fhead->last = 0; /* init pointers */
}